.search-pills-section{
    display: flex;
    align-items: center;
    column-gap: 22px;
    overflow: auto;
    padding: 0px 15px 25px 15px;
}
/* Hide scrollbar for Chrome, Safari and Opera */
.search-pills-section::-webkit-scrollbar {
    display: none;  
}
/* Hide scrollbar for IE, Edge and Firefox */
.search-pills-section {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
.search-pills-section .pill-sort-wrapper,.search-pills-section .pill-wrapper{
    display: flex;
    align-items: center;
}
.search-pills-section .pill-sort-wrapper{
    border: 1px solid #090416;
    border-radius: 46px;
    font-weight: 400;
    font-size: 17px;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
}
.search-pills-section .pill-left{
    padding: 13px 26px;
    background: #090416;
    border-radius: 46px;
    color: #ffffff;
}
.search-pills-section .pill-right{
    border: none;
    padding: 12px 23px 12px 10px;
    outline: none;
    cursor: pointer;
    background: #ffffff;
    color: #090416;
}
select.pill-right {
    -moz-appearance: none;
    -webkit-appearance: none;
}
select::-ms-expand.pill-right {
    display: none;
}
.search-pills-section .pill-option{
    background: none;
    padding: 12px;
    text-align: center;
}
.search-pills-section .pill-img-wrapper{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
}
.search-pills-section .show-all{
    background: #FFFFFF;
    font-weight: 700;
    font-size: 14px;
    padding: 15px 28px;
    cursor: pointer;
    border: 1px solid #090416;
    color: #090416;
    border-radius: 46px;
    flex-shrink: 0;
}
.search-pills-section .pill-wrapper{
    background: #FFFFFF;
    border: 1px solid #D5D2DF;
    filter: drop-shadow(0px 4px 6px rgba(14, 21, 46, 0.06));
    border-radius: 46px;
    padding: 10px 20px 10px 10px;
    column-gap: 5px;
    font-weight: 400;
    font-size: 14px;
    color: #090416;
    cursor: pointer;
    flex-shrink: 0;
    transition: .3s ease-in-out;
}
.search-pills-section .pill-wrapper:hover{
    background: #FCFCFF;
    border: 1px solid #D5D2DF;
    transition: .3s ease-in-out;
}
.search-pills-section .pill-wrapper:focus,.search-pills-section .pill-wrapper:active,.search-pills-section .pill-wrapper:visited{
    background: #FFFFFF;
    border: 1px solid #090416;
    transition: .3s ease-in-out;
}
.search-pills-section .pill-img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.col-with-item-count-wrapper .count-item{
    display: none;
}
@media (min-width: 992px){
.search-pills-section{
    padding: 0px 0px 30px 0px;
}
.col-with-item-count-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.col-with-item-count-wrapper .count-item{
    display: block;
    font-weight: 400;
    font-size: 17px;
    color: #848198;
}
}